/* custom-webmail.css - Branded Roundcube interface for TitanHost Cloud */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;800&family=Ubuntu:wght@500;700&display=swap');

body {
    background: #FAF8FC !important;
    font-family: 'Archivo', ui-sans-serif, system-ui, sans-serif !important;
    color: #280F37 !important;
}

#layout-content {
    background: #ffffff !important;
    border: 1px solid #EBE6F0 !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 48px rgba(40,15,55,.08) !important;
    padding: 40px !important;
    max-width: 440px !important;
    margin: 80px auto !important;
}

#logo {
    display: none !important; /* Hide old logo */
}

/* Insert new TitanHost logo */
#layout-content::before {
    content: "";
    display: block;
    width: 260px;
    height: 70px;
    margin: 0 auto 30px auto;
    background: url('/assets/logo-titanhost-full.jpg?v=claro-607bc3-1') no-repeat center;
    background-size: contain;
}

/* Title and typography updates */
h1, h2, h3, h4, .title, label {
    font-family: 'Ubuntu', sans-serif !important;
    color: #280F37 !important;
}

table {
    width: 100% !important;
}

td.title {
    padding-bottom: 8px !important;
    font-weight: 600 !important;
}

td.input {
    padding-bottom: 20px !important;
}

.form-control {
    border: 1px solid #D2C5DF !important;
    border-radius: 6px !important;
    height: 48px !important;
    padding: 10px 14px !important;
    font-size: 15px !important;
    background-color: #ffffff !important;
    color: #280F37 !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-control:focus {
    border-color: #782DC8 !important;
    box-shadow: 0 0 0 4px rgba(120, 45, 200, 0.14) !important;
    outline: none !important;
}

/* Button style */
#rcmloginsubmit {
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    background: #EB4B00 !important; /* Vibrant Orange */
    border: none !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    box-shadow: 0 16px 34px rgba(235,75,0,.2) !important;
    transition: background 0.2s ease, transform 0.1s ease !important;
}

#rcmloginsubmit:hover {
    background: #e54800 !important;
    box-shadow: 0 16px 34px rgba(235,75,0,.3) !important;
}

#rcmloginsubmit:active {
    transform: scale(0.98) !important;
}

/* Footer restyling */
#login-footer {
    margin-top: 25px !important;
    font-size: 0 !important; /* Hide old text content */
    color: #8E8299 !important;
    text-align: center !important;
    border-top: 1px solid #EBE6F0 !important;
    padding-top: 15px !important;
}

#login-footer::before {
    content: "TitanHost Cloud Webmail" !important;
    font-size: 12px !important;
    display: block !important;
}

