* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f2f2f2;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* MAIN WRAPPER */
.wrapper {
    text-align: center;
}

/* LOGO */
.logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SVG IMAGE SIZE CONTROL */
#webmail-logo {
    height: 48px;   /* matches your original 48px text size */
    width: auto;    /* keeps aspect ratio */
}

/* FORM */
.form-box {
    width: 320px;
    margin: auto;
}

.label {
    text-align: left;
    font-size: 13px;
    margin-bottom: 5px;
    color: #333;
}

/* INPUT */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    height: 38px;
    padding-left: 35px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}

/* ICON */
.icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* LOGIN BUTTON */
.login-btn {
    width: 100%;
    height: 38px;
    background: #2c91bf;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.login-btn:hover {
    background: #247da5;
}

/* DIVIDER */
.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ccc;
}

.divider span {
    margin: 0 10px;
    font-size: 12px;
    color: #666;
}

/* CPANEL BUTTON */
.cpanel-btn {
    width: 100%;
    height: 38px;
    background: #ff6a2a;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.cpanel-btn:hover {
    background: #e85c20;
}

/* LANGUAGES */
.languages {
    margin-top: 30px;
    font-size: 12px;
    color: #444;
}

.languages span {
    margin: 0 6px;
    cursor: pointer;
}

/* FOOTER */
.footer {
    margin-top: 30px;
    font-size: 11px;
    color: #777;
}
