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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 20px 40px;
    background: #b587fb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.links {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin-bottom: 48px;
    gap: 16px
}

.link-btn {
    display: flex;
    justify-content: center;
    padding: 16px 24px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #ceffa1;
    border-radius: 40px;
    color: #b587fb;
    border: none;
    outline: none; 
    width: 100%;
    transition: box-shadow 0.2s ease-in-out;
}

.link-btn:hover {
    box-shadow: 0 0 10px 0 rgba(206, 255, 161, 0.6);
}

form {
    width: 100%;
    max-width: 420px;
}

.form-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 16px;
    color: #ceffa1
}

.form-input {
    padding: 16px 24px;
    border-radius: 8px;
    border: 1px solid #ceffa1;
    background-color: rgba(206, 255, 161, 0.8);
    color: #b587fb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: box-shadow 0.2s ease-in-out;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.form-input::placeholder {
    color: #b587fb;
    font-weight: 600;
    opacity: 0.6;
}

.form-input:focus {
    outline: none;
    border: 1px solid #ceffa1;
    box-shadow: 0 0 10px 0 rgba(206, 255, 161, 0.6);
}

.form-textarea {
    height: 200px;
    resize: none;
}