@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2f4bc6;
    color: white;
    height: 100vh;
}

/* Navbar */
.navbar {
    background: white;
    color: black;
    height: 60px;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}
.logo img {
    width: 150px;
    height: 50px;
    margin-top: -5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-right .sign{
    display: flex; 
}

.nav-right .sign span{
    font-size: 16px;
    font-family: sans-serif;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2px;
    padding-right: 5px;
}

.nav-right input {
    padding: 6px 10px;
    border-radius: 20px;
    border: 1px solid #1b1b1b;
}

/* Main section */
.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    height: calc(100vh - 60px);
}

.content {
    max-width: 500px;
}

.content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: sans-serif;
    font-weight: 400;
}

.content p {
    font-size: 23px;
    line-height: 1.7;
    font-family: "Zalando Sans", sans-serif;
    font-weight: 100;
}

/* Login card */
.login-card {
    background: white;
    color: black;
    width: 360px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.sign-in-btn {
    width: 100%;
    padding: 14px;
    background: #2f4bc6;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all ease-in-out 0.2s;
}

.sign-in-btn:hover {
    background: #1c3199;
}

.create-account {
    display: inline-block;
    margin-top: 20px;
    color: black;
    font-weight: bold;
    text-decoration: underline;
    font-family: "Zalando Sans", sans-serif;
    font-weight: 500;
}

.create-account:hover{
    text-decoration: none;
}

footer {
    font-family: "Zalando Sans", sans-serif;
    font-size: 14px;
    font-weight: 200;
    padding: 5px;
    text-align: center;
}

.hr {
    width: 100%;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.301);
    margin-top: -30px;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    display: none;
    z-index: 100;
}

/* Modal wrapper */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 101;
}

/* Modal card */
.modal-card {
    background: white;
    width: 380px;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    animation: scaleIn 0.25s ease;
}

.modal-card h2 {
    color: #242424;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.modal-card input {
    width: 100%;
    padding: 12px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.modal-btn {
    width: 100%;
    padding: 13px;
    background: #2f4bc6;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
}

.modal-btn:hover {
    background: #243bb0;
}

.modal-link {
    margin-top: 15px;
    color: #2f4bc6;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    font-family: sans-serif;
}

.modal-link:hover {
    text-decoration: none;
}

/* Animation */
@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.menu-card {
    box-shadow: 0px 2px 6px 2px rgb(65, 65, 65);
    display: none;
    background: white;
    color: #1a1a1a;
    width: 380px;
    padding: 25px;
    border-radius: 18px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 100;
}

.menu-item {
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
}

.menu-item:hover {
    background: #dee3f8;
}

/* SAT SCORE CARD */
.sat-card {
    width: 460px;
    text-align: center;
    font-family: sans-serif;
}

.sat-info {
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
}

.score-block {
    background: #4369ff;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 15px;
}

.score-block.total {
    background: #2f4bc6;
    color: white;
}

.score {
    font-size: 48px;
    font-weight: bold;
    margin: 8px 0;
}

.score.small {
    font-size: 36px;
}

.score-row {
    display: flex;
    gap: 12px;
}

.score-row .score-block {
    flex: 1;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    padding: 13px 101px;
    background: #1e40af;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.2s;
}

.download-btn:hover {
    background: #1d4ed8;
}