/* Shared CSS for Signup Landing Pages (SignupTemp, Signuptrial, Signupinstalled) */

/* Universal Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Antenna Regular', 'Antenna', 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
}

/* Main Container - Base styles (background can be overridden per page) */
.main-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: linear-gradient(0deg, #161B29 0%, #161B29 100%), 
               linear-gradient(110deg, #441F6E 0%, #191F2F 46%, #191F2F 69%, #441F6E 100%), 
               white;
    overflow: hidden;
}

/* Logo Container */
.logo-container {
    left: 48px;
    top: 48px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Logo */
.logo {
    height: 40px;
    width: auto;
}

/* Sign-In Title */
.sign-in-title {
    align-self: stretch;
    color: white;
    font-size: 28px;
    font-family: 'Antenna Regular', 'Antenna', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

/* Sign-In Description - Base styles (width can be overridden) */
.sign-in-description {
    color: white;
    font-size: 14px;
    font-family: 'Antenna Regular', 'Antenna', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

/* Microsoft Button - Base styles (positioning/sizing can be overridden) */
.microsoft-button {
    background: #4484EC;
    overflow: hidden;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.microsoft-button:hover {
    background: #3a73d1;
}

.microsoft-button:active {
    background: #2f5fb3;
}

/* Microsoft Icon */
.microsoft-icon {
    width: 24px;
    height: 24px;
}

/* Microsoft Text */
.microsoft-text {
    color: white;
    font-size: 14px;
    font-family: 'Antenna Regular', 'Antenna', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

/* Help Link */
.help-link {
    align-self: stretch;
    color: #4484EC;
    font-size: 14px;
    font-family: 'Antenna Regular', 'Antenna', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    text-decoration: none;
    cursor: pointer;
}

.help-link:hover {
    text-decoration: underline;
}

/* Help Text - Base styles */
.help-text,
.help-text-right {
    align-self: stretch;
    color: #C8C8C8;
    font-size: 14px;
    font-family: 'Antenna Regular', 'Antenna', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

/* Right Panel - Base styles (positioning/width/background can be overridden) */
/* Note: Right panel styles are page-specific due to different layouts */

/* Responsive Design - Common patterns */
@media (max-width: 768px) {
    .main-container {
        padding: 20px 15px;
    }
    
    .logo {
        height: 35px;
    }
    
    .sign-in-title {
        font-size: 24px;
    }
    
    .sign-in-description {
        font-size: 13px;
    }
    
    .microsoft-button {
        height: 56px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
    }
    
    .logo {
        height: 30px;
    }
    
    .sign-in-title {
        font-size: 22px;
    }
    
    .sign-in-description {
        font-size: 12px;
    }
    
    .microsoft-button {
        height: 50px;
    }
    
    .microsoft-text {
        font-size: 13px;
    }
}

