.login-container {
    display: flex;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.signin-panel {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 500px;
    max-width: 90%;
}

.logost {
    width: 120px;
    margin-bottom: 15px;
    margin: 30px auto;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
}

.text-muted {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.input-field {
    height: 50px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.input-field:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

.but{
    height: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.login-link {
    margin-top: 15px;
    font-size: 0.95rem;
}

.register-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.register-link:hover {
    text-decoration: underline;
}

.resend-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.resend-link:hover {
    text-decoration: underline;
}
