﻿/* Background */
.login-background {
    background-color: #f3f4f6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card Container */
.login-card-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

/* Card */
.login-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Green Header */
.login-header-green {
    background-color: #2D604C;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-logo {
    max-width: 160px;
    height: auto;
}

/* Content */
.login-content {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

/* Headline */
.login-headline {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

/* Form */
.login-form .form-group {
    width: 100%;
    margin-bottom: 15px;
}

.login-form .form-control {
    height: 45px;
    font-size: 1rem;
    border-radius: 5px;
}

/* Password Toggle (optional JS functionality) */
.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

/* Checkbox and Forgot Password */
.form-check-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.forgot-password-link {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
}

/* Button */
.btn-success {
    background-color: #28a745;
    border: none;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    border-radius: 5px;
    color: white;
}

/* Register Link */
.register-container {
    margin-top: 20px;
    text-align: center;
}

.register-link {
    color: #007bff;
    text-decoration: none;
}

/* Footer Note */
.login-footer {
    margin: 20px 0px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}
.confirmation-text {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #444;
}

.btn-outline-primary {
    padding: 8px 20px;
    font-size: 1rem;
    border-radius: 4px;
}
.button-spacing {
    padding-bottom: 10px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #f0f0f0 inset !important;
    box-shadow: 0 0 0 1000px #f0f0f0 inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 9999s ease-in-out 0s;
}

body {
    background-image: url('@UrlHelper.GetFullUrl("/publicSite/infoBackground.png")');
    background-size: cover;
    margin: 0;
    padding: 0;
}

