*, *::before, *::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #fff;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevents extra scrollbars */
}

/* Warning Frame */
#cromWarningFrame {
    position: fixed; 
    top: 15%;  
    left: 0; 
    width: 100%; 
    background-color: #FF2626; 
    color: #fff; 
    text-align: center; 
    line-height: 50px; 
    font-size: 22px;
    padding: 10px;
    border: solid #AAA;
    border-width: 1px 0;
}

/* Shared Frame Styles */
#cromDefaultFrame, 
#cromLoginFrame {
    background-color: #f4f4f4; 
    display: flex; 
    flex-direction: column; 
    width: 100%; 
    height: 100%; 
    justify-content: center; 
    align-items: center; 
    box-sizing: border-box;
    text-align: center;
}

#cromDefaultFrame {
    padding: 25%;
}

/* Image Styles */
#cromDefaultFrame img, 
#cromLoginFrame img {
    width: 250px; 
    margin-bottom: 10px;
}

/* Login Frame */
#cromLoginFrame form {
    background-color: #fff; 
    padding: 30px; 
    border: 1px solid #AAA;
    text-align: left; 
}

.crom-divIcon {
    text-align: center;
}

.crom-divInput--login {
    margin-top: 20px; 
}

#cromLoginFrame form label {
    color: #333;
}

/* Input Styles */
#cromLoginFrame form input {
    width: 400px; 
    font-size: 15px;  
    text-align: center; 
    padding: 12px; 
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#cromLoginFrame form input:focus {
    outline: none;
    border-color: #DFA242;
}

/* Button Styles */
.crom-button--login {
    border: 1px solid #EEBF57; 
    font-weight: bold; 
    background-color: #DFA242; 
    color: #000;
    cursor: pointer; 
    padding: 12px;
    width: 100%;
    border-radius: 4px;
}
