﻿body {
    background-color: #f8f9fa;
}

.form-wrapper {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
}

.btn-custom {
    padding: 10px 24px;
    min-width: 150px;
    border: 1px solid #ced4da;
    background-color: #e2e6ea;
    color: #000;
    text-align: center;
    font-weight: 500;
}

    .btn-custom:hover {
        background-color: #d6d8db;
        color: #000;
    }

@media (max-width: 768px) {
    .form-wrapper {
        padding: 25px;
    }

    .form-title {
        font-size: 22px;
    }

    .btn-custom {
        width: 100%;
        margin-bottom: 10px;
    }
}

img.logo {
    width: 200px;
}

@media (min-width: 992px) {
    .center-y-lg {
        margin-top: 150px;
    }
}

