*{
    scroll-behavior: smooth !important;
  }
body {
    background-color: #f0f2f5;
    font-family: 'Roboto', sans-serif;
}
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form header {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
.form .field {
    margin-top: 15px;
}
.form .field input {
    padding-right: 40px;
}
.form .eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    cursor: pointer;
}
.form .form-link, .form .media-options {
    text-align: center;
    margin-top: 20px;
}
.form .media-options a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    color: #333;
}
.form .media-options a.google {
    border: 1px solid #CACACA;
}
.btn-home {
    position: absolute;
    top: 20px;
    left: 20px;
}


/* pop -up */
.custom-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.custom-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.success-popup {
    background-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.error-popup {
    background-color: #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

