@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

body::before,
body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.8;
    z-index: -1;
}

body::before {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1260ae, #3a9ef1);
    top: -150px;
    right: -150px;
}

body::after {
    width: 450px;
    height: 450px;
    background: linear-gradient(315deg, #1260ae, #3a9ef1);
    bottom: -200px;
    left: -200px;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 350px;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    width: 100px;
    height: auto;
}

.cancel-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1260ae;
    background-color: transparent;
    border: 2px solid #1260ae;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cancel-btn:hover {
    background-color: #1260ae;
    color: white;
}

.login-btn,
.signup-btn {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background-color: #1260ae;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-bottom: 1rem;
}

.login-btn:hover,
.signup-btn:hover {
    background-color: #0e4d8b;
}


/* WELCOME PAGE STYLES */
.logo.welcome {
    margin-bottom: 2rem;
}

.welcome-text {
    color: #1260ae;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.app-name {
    font-size: 3rem;
    font-weight: 700;
    color: #1260ae;
    margin: 0;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.2rem;
    color: #1260ae;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.signup-prompt {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #1260ae;
}

.signup-prompt a {
    color: #1260ae;
    text-decoration: underline;
    font-weight: 600;
}



/* LOGIN PAGE STYLES */
.logo.login {
    margin-top: 10px;
    margin-bottom: 0;
}

.login-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1260ae;
    margin-top: 5px;
    margin-bottom: 0;
}

.login-subheading {
    color: #1260ae;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
}



/* SIGN-UP PAGE STYLES */
.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1260ae;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 0;
}

.sub-heading {
    color: #1260ae;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1260ae;
    margin-bottom: 5px;
    padding-left: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #1260ae;
    border-radius: 50px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    color: #333;
}

.form-group input::placeholder {
    color: #bbb;
}

.form-group input:focus {
    border-color: #1260ae;
}





