﻿
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 2.25rem;
    overflow: hidden;
}

.build-container {
    font-size: small;
    color: dimgrey;
    padding-right: 10px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-control, .form-select, .TextBoxUpperCase {
    width: 350px !important;
    min-width: 350px;
    max-width: 100%;
}
/* Fixing Width of Dropdown (if it's a RadComboBox or Select) */
.RadComboBox, .form-select {
    width: 350px !important;
}

/* Ensuring Button Stretches Properly */
.btn-primary {
    width: 300px;
}

/* Centering the Card */
.login-container {
    max-width: 450px;
    margin: auto;
    padding-top: 50px;
}

.login-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex-grow: 1;
}

#failtext {
    display: block;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible !important;
    height: auto;
    margin-top: 0.5rem;
}
