﻿/* dpdp_login.css */

/* General body styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Login card container */
.login-card {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Input group alignment fix */
.input-group {
    display: flex;
    flex-wrap: nowrap; /* prevent wrapping */
    align-items: stretch;
}

.input-group-text {
    background-color: #e9ecef;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto; /* keep fixed width for icon box */
}

/* Textbox styling */
.form-control {
    flex: 1 1 auto; /* allow textbox to grow inline */
    border-radius: 0 8px 8px 0; /* rounded only on right side */
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    min-width: 0; /* prevent overflow pushing to next line */
}

/* Custom button */
.btn-custom {
    background-color: #0066CC;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .btn-custom:hover {
        background-color: #004080;
        color: #fff;
    }

/* CAPTCHA image */
#captchaImage {
    transition: opacity 0.2s ease-in-out;
    border-radius: 4px;
    height: 50px;
}

.fade-out {
    opacity: 0.5;
}

/* Helper text */
.form-text {
    font-size: 0.85rem;
}

/* Uniform icon styling */
.icon-primary {
    font-size: 1.25rem;
    color: #0d6efd; /* Bootstrap primary */
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Logo image styling */
.logo-img {
    max-height: 80px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
