* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background-color: #ffffff;
    font-family: 'Montserrat',Arial, Helvetica, sans-serif;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 300px;
    width: 100%;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    text-decoration: none;
    padding: 12px 22px;
    background-color: rgb(206, 46, 46);
    color: #ffffff;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #333333;
}

.buttons i {
    padding-right: 20px;
}
