* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: unset;
}
body {
    background: #f8f8f8;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
section {
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    background: #f8f8f8;
    box-shadow: inset 10px 10px 20px white, 5px 5px 5px #00000008;
    border-radius: 9px;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.groupcontent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: stretch;
    gap: 10px;
}
section img {
    width: 200px;
    background: #f3f3f3;
    border-radius: 6px 0 0 0px;
}
.right {
    background: #f3f3f3;
    border-radius: 0 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
}
.grpbutton {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 10px;
}
.grpbutton a {
    width: 100%;
    border-radius: 3px;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid transparent;
    letter-spacing: 1px;
}
.grpbutton a.daftar {
    color: white;
    background: green;
}
.grpbutton a.daftar:hover {
    background: transparent;
    border: 1px solid green;
    color: black;
}
.grpbutton a.login {
    color: white;
    background: orange;
}
.grpbutton a.login:hover {
    background: transparent;
    border: 1px solid orange;
    color: black;
}
footer {
    text-align: center;
    padding: 3px;
    background: #f3f3f3;
    font-size: 12px;
    border-radius: 0 0 6px 6px;
}
footer a {
    color: green;
    font-weight: bold;
    text-transform: uppercase;
}
footer a:hover {
    color: unset;
}
@media screen and (max-width: 600px) {
    section {
        height: 100dvh;
        justify-content: space-between;
    }
    .groupcontent {
        display: flex;
        flex-direction: column;
    }
    .groupcontent img {
        width: 100%;
    }
}