/* ==========================
   REGISTER PAGE
========================== */

.register {
    min-height: calc(100vh - 180px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.register-container {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.register-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #0d6efd;
    font-size: 30px;
}

.register-form {
    display: flex;
    flex-direction: column;
}

.register-form label {
    margin-bottom: 8px;
    font-weight: 600;
}

.register-form input {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.register-form input:focus {
    border-color: #0d6efd;
}

.register-btn {
    padding: 14px;
    border: none;
    border-radius: 6px;
    background: #0d6efd;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn:hover {
    background: #0b5ed7;
}

.login-link {
    margin-top: 25px;
    text-align: center;
}

.login-link a {
    color: #0d6efd;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .login-wrapper,
    .register-wrapper {
        width: 90%;
        margin: 0 auto;
    }

    .login-container,
    .register-container {
        width: 100%;
        padding: 20px;
    }

    .login-form input,
    .register-form input {
        width: 100%;
    }

    .login-btn,
    .register-btn {
        width: 100%;
    }
}