* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fdfdfd;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fbd0cc;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
}

.login-btn {
    background-color: #d4b5b0;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.login-box {
    background-color: #fbd0cc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 300px;
}

.login-box h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #e3e3e3;
    border-radius: 10px;
    font-size: 16px;
}

.submit-btn {
    background-color: #d4b5b0;
    color: white;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
}

footer {
    background-color: #fbd0cc;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #2c3e50;
}

footer {
    font-size: 14px;
    color: #2c3e50;
    text-align: center;
}
