/* Custom styles for the login/account pages */

/* Brand Container - the logo and text container on login page */
.brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

/* Brand Logo Image */
.brand-logo {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Brand Text */
.brand-text {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Account module form styling */
.account-module-form {
    width: 100%;
    max-width: 400px;
}

/* If you want to customize the navbar brand on the login page */
.abp-account-layout .navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Custom styling for the account layout background */
.abp-account-layout body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


