@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    direction: ltr;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f0f2f5;
    color: #333;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.signup-container {
    max-width: 500px;
}

.form-title {
    text-align: center;
    color: #289594;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.login-form, .signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: bold;
    color: #555;
}

.text-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.text-input:focus {
    outline: none;
    border-color: #289594;
}

.login-submit {
    background-color: #289594;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-submit:hover {
    background-color: #1e7573;
}

.signup-text {
    text-align: center;
    margin-top: 1.5rem;
}

.signup-link {
    color: #289594;
    text-decoration: none;
    font-weight: bold;
}

.signup-link:hover {
    text-decoration: underline;
}
.error{
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    background-color: #f75b5bd4;
    font-weight: bold;
    color: white;
    font-size: x-large;
    justify-content: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.success{
    width: 100%;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    background-color: #279137d4;
    font-weight: bold;
    color: white;
    font-size: x-large;
    justify-content: center;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.countdown {
    font-size: 20px;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 20px;
}
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .form-container {
        padding: 1.5rem;
    }
}

