﻿/* Page background */

body {
    margin: 0;
  /*  font-family: "Segoe UI", Arial, sans-serif;*/
  font-family:Verdana;
    background: url(../images/login_bg.gif) repeat;
}

/* Center container */

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0px;
}

/* Form box */

.form-box {
    width: 100%;
    max-width: 420px;
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-top: 5px solid #b2a274;
}

    /* Title */

    .form-box h5 {
        text-align: center;
        margin-bottom: 25px;
        color: #b2a274;
        /*text-decoration: underline;*/ /* underline */
        word-wrap: break-word; /* wrap long text */
        /* Custom underline */
        border-bottom: 1px solid #e31837; /* thickness + color */
        display: inline-block; /* shrink underline to text width */
        padding-bottom: 5px; /* space between text and underline */
    }

.logo-box {
    text-align: center;
    margin-bottom: 5px;
}

/* Input fields */

.input-box {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

    /* Focus effect */

    .input-box:focus {
        border-color: #b2a274;
        outline: none;
    }

/* Button */

.btn-status {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    background: #b2a274;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

    /* Button hover */

    .btn-status:hover {
        background: #a69569;
    }
.ref_code {
color:black;
}
/* Validation text */
span {
    font-size: 12px;
}

/* Mobile responsive */

@media screen and (max-width: 480px) {

    .form-box {
        padding: 20px;
    }


    .logo-box img {
        width: 288px; /* actual logo width */
        height: auto; /* keeps correct aspect ratio */
        max-width: 100%; /* responsive */
    }
}

