@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.forms-container {
    width: 100%;
}

.signin-signup {
    width: 100%;
}

.sign-in-form {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 10px;
    padding: 30px 40px;
    backdrop-filter: blur(10px);
}

.sign-in-form .title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.input-field {
    position: relative;
    margin: 20px 0;
    height: 50px;
    width: 100%;
}

.input-field i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
}

.input-field input {
    height: 100%;
    width: 100%;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 45px 20px 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    color: white;
    transition: all 0.3s ease;
}

.input-field input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.input-field input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Screen reader only text for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.btn {
    width: 100%;
    height: 45px;
    border: 2px solid white;
    outline: none;
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn.solid {
    background: white;
    color: #333;
}

.btn.solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn.solid:active {
    transform: translateY(0);
}

.btn.transparent {
    background: transparent;
    color: white;
    border-color: white;
}

.btn.transparent:hover {
    background: rgba(255, 255, 255, 0.1);
}

.panels-container {
    width: 100%;
    margin-top: 30px;
    display: grid;
    gap: 14px;
}

.panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left-panel {
    text-align: center;
    color: white;
}

.content {
    padding: 20px;
}

.content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 18px;
}

.admin-panel .content {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    backdrop-filter: blur(10px);
}

.admin-details {
    display: grid;
    gap: 4px;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid transparent;
}

.admin-details span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.admin-details strong {
    font-size: 15px;
    color: white;
}

.admin-details small {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);

}

.admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    margin-top: 6px;
}
/* Responsive design */
@media (max-width: 768px) {
    .sign-in-form {
        padding: 20px 30px;
    }

    .sign-in-form .title {
        font-size: 24px;
    }

    .input-field input {
        padding: 15px 40px 15px 15px;
        font-size: 14px;
    }

    .btn {
        height: 40px;
        font-size: 14px;
    }
}
    .toast.success .toast-dot { background: var(--success); }
    .toast.fail    .toast-dot { background: var(--error); }