* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
} 

body {
    margin: 0;
    padding: 0;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DEDED3 0%, #fcfcfb 50%, #DEDED3 100%);
} 

.catchallHeroBackgroundWrapper {
    position: relative; 
    width: 100%; 
    height: 100%; 
    z-index: 0; 
    overflow: hidden;
    display: flex; 
    justify-content: center;
    align-items: center;
}

.heroBackground {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.catchallBackgroundBlur {
   position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    filter: blur(3rem);
    animation: backgroundPulse 6s infinite ease-in-out;
}

.catchallBackgroundBlur1 {
   top: -10rem;
    right: -10rem;
    background: rgba(242, 250, 253, 1);
}

.catchallBackgroundBlur2 {
     bottom: -10rem;
    left: -10rem;
    background: rgba(242, 250, 253, 1);
    animation-delay: 0.1s;
}

.catchallBackgroundBlur3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    background: rgba(242, 250, 253, 1);
    animation-delay: 0.1s;
}

@keyframes loginBackgroundPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.8; }
}

.catchallGridPattern {
  position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(153, 151, 157, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 151, 157, 0.4) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    z-index: 0; 
}

.mainContainer {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2; 
}

.mainCell, 
.mainCellSmall {
    background: linear-gradient(135deg, #DEDED3 0%, #fcfcfb 50%, #DEDED3 100%);
    border: none; 
    border-radius: 0.6rem;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center; 
    box-shadow: 0 0 20px black; 
    max-width: 80%; 
    max-height: 90%; 
}

.mainCell {
    padding: 4vw 2vw; 
}

.mainCellSmall {
    padding: 3vw; 
}

.mainLogo {
    margin: 0 2rem; 
    margin-bottom: 4vh;
    max-height: 40vh; 
}

.mainLogoSmall {
    height: 16vw; 
    max-height: 160px; 
    margin-bottom: 20px; 
}

.mainTitle {
    color: #c1c1c1; 
    font-size: 1.4rem; 
    font-weight: 600; 
    margin-bottom: 1rem; 
    width: 70%; 
    text-align: center; 
    text-shadow: 0 0 1px white;
    font-style: italic;
}

.mainSubtitle {
    color: #f5f5f5; 
    font-size: 0.9rem; 
    font-weight: 800; 
    margin-bottom: 1rem; 
    width: 70%; 
    text-align: center; 
    font-style: italic; 
}

.mainText {
    width: 70%; 
    color: #c1c1c1; 
    font-size: 0.8rem; 
    font-weight: 500; 
    margin-bottom: 2px; 
    font-style: italic; 
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-align: center;
}

.mainText span a {
    color: #ec4899;
}

.mainText span a:hover {
    opacity: 0.6; 
    transform: scale(1.05);
}

.mainLink, 
.supportLink {
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 60%; 
    padding: 0.8rem 1rem; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    box-shadow: 0 0 3px white; 
    margin-bottom: 1rem; 
    z-index: 2;
    border: 1px solid #A3A3A3; 
    color: #f5f5f5; 
    text-decoration: none; 
    background: linear-gradient(135deg, #A855F7, #60A5FA); 
    transition: transform 0.3s ease; 
}

.mainLinkText, 
.supportLinkText {
    font-size: 0.8rem; 
    font-weight: 600; 
    color: white; 
    cursor: pointer; 
    text-overflow: ellipsis;
    overflow: hidden; 
    white-space: nowrap;
}

.mainLink:hover, 
.supportLink:hover {
    opacity: 0.6; 
    transform: scale(1.05); 
}

.mainLinkFlex {
    display: flex; 
    justify-content: center;
    align-items: center;
    gap: 2vw; 
    width: 100%; 
    padding: 0 2rem; 
}

.gitFlex {
    width: 100%; 
    display: flex; 
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; 
    gap: 0; 
}

.gitFlexWrapper {
    display: flex; 
    justify-content: center; 
    align-items: center;
    padding: 0 20px; 
    gap: 10px; 
}

.gitLogo {
    width: 70px; 
    height: 70px; 
    background-color: rgba(255,255,255,0.2); 
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 10px black; 
    margin: 0; 
}

.gitConnector {
    border-radius: 50%; 
    height: 5px; 
    width: 5px; 
    background-color: rgba(255,255,255,0.8); 
    opacity: 0.8;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    gap: 15px;
    padding: 20px;
    min-width: 100%; 
    max-width: 100%; 
    margin: 0 auto;
}

.inputWrapper {
    position: relative;
    width: 100%; 
    box-sizing: border-box;
    display: flex; 
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.8); 
}

.inputWrapper .togglePassword {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #121212;
    font-size: 0.8rem;
    padding: 0;
}

.loginInput {
    width: 100%;
    font-size: 0.8rem !important; 
    font-weight: 600; 
    color: #121212; 
    padding: 15px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.05); 
    box-shadow: 0 0 6px black;
    outline: none;
}

.loginInput:hover, 
.loginInput:focus {
    border: 1px solid #ccc;
    outline: none; 
}

.loginButton {
    width: 100%;
    padding: 12px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem !important; 
    font-weight: 700; 
    color: #f5f5f5 !important; 
    box-shadow: 0 0 6px black;
    background: linear-gradient(135deg, #A855F7, #60A5FA); 
}

.loginButton:hover {
    opacity: 0.6; 
}

.errorMessage {
    color: #E54B4B;
    font-size: 0.8rem;
    font-weight: 700;
    display: none;
    text-align: center;
    min-height: 15px; 
    max-height: 15px;
    padding: 0; 
    display: flex; 
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
