
.signup-box {
    background: #fff;
    padding: 40px;
    margin: auto;
    border-radius: 8px;
    width: 100%;
    max-width: 360px;
    border: 2px solid #f1f1f1;
}

.signup-box h1 {
    color: #000000;
    margin-bottom: 20px;
}

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

label {
    margin-bottom: 10px;
}

input[type="email"],
input[type="text"],
input[type="password"],
input[type="number"],
select {
    padding: 10px;
    margin-bottom: 20px;
    height: 60px;
    font-family: "Red Hat Text", sans-serif;
    border: 1px solid #D6D6D6;
    box-sizing: border-box;
    background: linear-gradient(0deg, #FAFAFA 0%, #FAFAFA 100%), #D9D9D9;
    border-radius: 16px;
    font-size: 16px;
}

.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox input {
    margin-right: 10px;
}

button {
    color: white !important;
    border: 1px solid #D6D6D6 !important;;
    box-sizing: border-box !important;;
    background: #4169E1 !important;;
    cursor: pointer !important;;
    margin-top: 20px !important;;
    transition: background 0.6s ease !important;;
    font-family: "Red Hat Text", sans-serif !important;;
    border-radius: 16px !important;;
    padding: 10px !important;;
    height: 60px !important;;
    font-size: 16px !important;;
    font-weight: bold !important;;
}

button:hover {
    background: #1a40a8 !important;;
}

.signin {
    text-align: center;
    margin-top: 20px;
}

.signin a {
    color: #1a40a8;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    main {
        width: 100%;
    }
}

@media (max-width: 1070px) {
    .container {
        flex-direction: column;
    }

    main {
        width: 100%;
    }
}

#reset_password {
    background: linear-gradient(0deg, #FAFAFA 0%, #FAFAFA 100%), #D9D9D9;
    border: 1px solid #D6D6D6;
    color: #1c1c1c;
}

#reset_password:hover {
    background: linear-gradient(0deg, #FAFAFA 0%, rgba(65, 105, 225, 0.15) 100%), rgba(65, 105, 225, 0.1);
}